home *** CD-ROM | disk | FTP | other *** search
/ Isometric Game Programming with DirectX 7.0 / Isometric Game Programming.iso / directx / dxf / samples / multimedia / directshow / baseclasses / activex.ver < prev    next >
Encoding:
Text File  |  2000-10-02  |  1.7 KB  |  53 lines

  1. //------------------------------------------------------------------------------
  2. // File: Activex.ver
  3. //
  4. // Desc: DirectShow base classes - common versioning information for 
  5. //       ACTIVEX binaries.
  6. //
  7. // Copyright (c) 1996 - 2000, Microsoft Corporation.  All rights reserved.
  8. //------------------------------------------------------------------------------
  9.  
  10.  
  11. #ifndef _ACTIVEX_VER_
  12. #define _ACTIVEX_VER_
  13.  
  14. // NOTE! all string resources that will be used in ACTIVEX.RCV for the
  15. // version resource information *MUST* have an explicit \0 terminator!
  16.  
  17. #define VERSION_RES_MAJOR_VER   8
  18. #define VERSION_RES_MINOR_VER   0
  19. #define VERSION_RES_BUILD       0
  20.  
  21. #define VERSION_RES_STRING_D    "8.00 (Debug)\0"
  22. #define VERSION_RES_STRING      "8.00\0"
  23.  
  24. #define VERSION_RES_PRODUCT_NAME  "DirectX 8.0 Sample\0"
  25. #define VERSION_RES_COMPANY_NAME  "Microsoft Corporation\0"
  26. #define VERSION_RES_COPYRIGHT     "Copyright (C) 1992-2000 Microsoft Corporation\0"
  27.  
  28. // The following defines are required on a file-by-file basis
  29. //
  30. // #define VERSION_RES_BIN_NAME         "sample.ax\0"
  31. // #define VERSION_RES_BIN_DESCRIPTION  "Sample Filter\0"
  32. //
  33. // Also required, if you don't want the defaults, are
  34. //
  35. // #define VERSION_RES_ACTIVEX  "Filter dll\0" (the default value)
  36. //
  37. // A string defining the type of component.
  38. //
  39. // #define VERSION_RES_TYPE     VFT_DLL (default)
  40. //                              VFT_EXE
  41. //                              VFT_VXD
  42. //                              VFT_DRV
  43. //                              VFT_UNKNOWN
  44. //
  45. // #define VERSION_RES_SUBTYPE  VFT2_UNKNOWN (default)
  46. //                              VFT2_DRV_INSTALLABLE
  47. //                              VFT2_DRV_SOUND
  48. //
  49. // See winver.h for further details
  50.  
  51. #endif
  52.  
  53.